1
תגובות
גישה ב.htaccess
פתח
1alexmelo
,
היי אני רוצה לאפשר גישה לאחד התיקיות של באתר על ידי htaccess שבתוך התיקיה איך אני עושה את זה ?
כל האתר מתנהל בmvc בקריאה דרך הurl
כל האתר מתנהל בmvc בקריאה דרך הurl
1 תשובות
כלומר כל הכתובות מובילות ל index.php
ואתה רוצה שכתובות לתיקיה מסוימת לא ינוטבו אל index.php אלה יגיעו לתיקיה המסוימת?
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>
Options +FollowSymlinks
RewriteEngine On
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>